home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / SELFTREE.ZIP / selftree / examples / default.pov < prev    next >
Encoding:
Text File  |  1997-09-02  |  554 b   |  51 lines

  1. /*
  2.  *  This is the default-tree
  3.  */
  4.  
  5. #global_settings {
  6.  assumed_gamma 1.0
  7. }
  8.  
  9.  
  10. light_source { <50 , 200, -50> color rgb <0.8, 0.8,1> }
  11. light_source { <50 , 20, -50> color rgb <0.8, 0.8,1> }
  12.  
  13. camera {
  14.   up y
  15.   right 4/3*x
  16.   direction 2*z
  17.   location <0 , 5, -33>
  18.   look_at  <0 , 6, 0>
  19. }
  20.   
  21. background{color rgb <0.2, 0, 0.9>}
  22.  
  23. #include "selftree.inc"
  24. #include "default.inc"
  25.  
  26. object {
  27.    TREE
  28.    rotate y*-45
  29. }
  30.  
  31. plane {
  32.    <0, 1, 0>, 0
  33.    texture {
  34.       pigment { color rgb <0.2, 0.6, 0.1> }
  35.       normal {
  36.      crackle 1
  37.      scale 0.1
  38.       }
  39.    }
  40. }
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.